Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
The 'events' npm package provides a way to implement the Observer pattern, which is a software design pattern that allows an object (known as a 'subject') to maintain a list of its dependents (known as 'observers') and automatically notify them of any state changes, usually by calling one of their methods. It is the same EventEmitters API as used by Node.js core.
EventEmitter creation
This code sample shows how to import the 'events' package and create a new instance of an EventEmitter.
const EventEmitter = require('events');
const myEmitter = new EventEmitter();
Event listening
This code sample demonstrates how to listen for an 'event' and execute a callback function when the event is emitted.
myEmitter.on('event', () => {
console.log('an event occurred!');
});
Event emitting
This code sample shows how to emit an 'event', which will trigger any associated event listeners.
myEmitter.emit('event');
Once listener
This code sample demonstrates how to set up a listener that will only be called once for the next time the event is emitted.
myEmitter.once('event', () => {
console.log('this event will be logged only once');
});
Removing listeners
This code sample shows how to remove a specific listener from an event.
const callback = () => console.log('event occurred');
myEmitter.on('event', callback);
// ...
myEmitter.removeListener('event', callback);
Mitt is a tiny functional event emitter / pubsub. It provides the same basic functionality as 'events' but with a smaller footprint and a more functional approach.
EventEmitter3 is a high performance EventEmitter. It has a similar API to 'events' but is optimized for performance and has no dependencies.
Wolfy87's EventEmitter is an implementation of the EventEmitter module found in Node.js but for the browser. It offers similar functionality to 'events' but is designed to work in a browser environment.
Node's event emitter for all engines.
npm install events
var EventEmitter = require('events')
See the node.js event emitter docs
2.1.0 (2018-05-25)
FAQs
Node's event emitter for all engines.
The npm package events receives a total of 27,686,691 weekly downloads. As such, events popularity was classified as popular.
We found that events demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.